home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 002 / pco324.arc / README.1 < prev    next >
Text File  |  1987-03-04  |  13KB  |  268 lines

  1.  
  2. PC-Outline  Copyright 1986,7 Brown Bag Software, All Rights Reserved
  3. Version 3.24sw
  4.  
  5. These are some of the files on this disk:
  6.  
  7. PCO.EXE      - executable file for running Outline!
  8. README.1     - the latest notes about Outline! not included in the manual
  9. README.2     - descriptions of the utility programs included on the disk
  10. GLOBAL.COM   - utility program #1 (see README.2)
  11. CPY.COM      - utility program #2 (see README.2)
  12. DIRS.COM     - utility program #3 (see README.2)
  13. MOVE.COM     - utility program #4 (see README.2)
  14. MEM.COM      - utility program #5 (see README.2)
  15. BEEP.COM     - utility program #6 (see README.2)
  16. PUSHDIR.COM  - utility program #7 (see README.2)
  17. POPDIR.COM   - utility program #8 (see README.2)
  18. MTCONV.EXE   - utility progran #9 (see README.2)
  19. DOC.PRN      - brief documentation in printable form
  20. DOC.PCO      - brief documentation in a Outline! file
  21. EPSON.CFG    - the epson printer driver
  22. IBM.CFG      - the ibm printer driver
  23. BLANK.CFG    - a dummy printer driver that will ignore all print codes
  24. PRINTDOC.BAT - a batch file that will print DOC.PRN to LPT1
  25. PCPRINT.COM  - a program for changing printer drivers
  26. KEYSET.COM   - a program for customizing the Outline! invoke key
  27. PCOPRN$.CFG  - a printer substitution file for correctly printing graphics
  28.                characters on non-IBM printers.
  29. *.PCO        - sample outlines covering many of Outline!'s features.
  30. GOODCLK.COM  - a program to make the time display in Outline! work
  31.                correctly on some compatibles (AT&T, EPSON, and others).
  32.                To use it, just run it in your autoexec.bat file (or any
  33.                time before loading Outline!).
  34.  
  35. Last minute notes about Outline!:
  36.  
  37. A couple of the most recently added features of PC-Outline are as follows:
  38.  
  39. 1)   NEW WAY OF SPECIFYING WHERE THE CONFIGURATION FILE IS FOR USE ON
  40.      A HARD DISK:  Instead of using the /l=<configuration file/path
  41.      name> as a command parameter option, you may put the command
  42.      SET PCO=<configuration file/path name> in your autoexec.bat
  43.      file.  Outline! will first look in the current directory for
  44.      the configuration file PCO.CFG.  If it is not found there and
  45.      there was no /l=.....  command parameter, then Outline! will
  46.      try the file/path set in the environment with the dos SET
  47.      command.  By using this feature, you can start Outline! from
  48.      anywhere on your hard disk simply by pathing to the directory
  49.      that contains PCO.EXE.  Outline! will do the rest of the work,
  50.      automatically finding its configuration files.
  51.  
  52. 2)   NEW /d COMMAND PARAMETER FOR CONTROLLING THE STARTING CURRENT
  53.      DIRECTORY IN Outline!:  The configuration file PCO.CFG
  54.      (created from the ADVANCED CONFIGURATION menu) can contain a
  55.      starting directory.  If it does, then each time Outline!
  56.      starts it will automatically start with that directory as the
  57.      current directory for outline files.  If it does not contain a
  58.      starting directory, (the entry in the ADVANCED CONFIGURATION
  59.      menu for starting directory is blank), then Outline! will use
  60.      the current DOS directory as its starting directory.  If you set
  61.      a current directory in the above menu because you keep most of
  62.      your outline files in one particular location, but sometimes you
  63.      want to start up Outline! with a different directory, then you
  64.      can log to the directory you want and type PCO.EXE /d.  The /d
  65.      will tell Outline! to ignore the starting directory set in the
  66.      configuration file and use the DOS current directory.
  67.  
  68. 3)   Outline! now supports the creation of a printer substitution table
  69.      allowing you to print graphics characters on some printers.  Note:
  70.      Graphics characters will print exactly as seen on the screen on an
  71.      IBM printer.  On epson printers and most other printers, however, you
  72.      must do a little extra work to get some graphics characters to print
  73.      correctly.
  74.  
  75.      For example, if you choose bullet numbering for your outlines, an
  76.      epson printer will not correctly print the bullet.  To fix this,
  77.      create an ascii file named PCOPRN$.CFG and place the following line
  78.      in it (this file exists on the Outline! system disk):
  79.  
  80.      char(254)=143
  81.  
  82.      The bullet character on screen is 254 and the epson printer character
  83.      for a bullet is 143.  This command tells Outline! that whenever it
  84.      is about to print a character 254, print a 143 instead.  You can
  85.      place as many printer substitutions as you like.  The string to
  86.      substitute can be more than one character if desired.  For example
  87.      you could redefine the tilde character (~) to turn boldface on (for
  88.      an epson printer) by inserting the following line.
  89.  
  90.      char('~')=27,'E'
  91.  
  92.      This would substitute ESC G for every occurence of a tilde character.
  93.  
  94.      Note that there are two ways to insert a value, by placing a
  95.      character in single quotes ('D') or by entering the decimal
  96.      representation for the ascii value of the character (123).  Each
  97.      entry must be separated by a comma.  Following are some valid
  98.      entries:
  99.  
  100.      char(132)='a'
  101.      char('f')='ABC',32
  102.      char(34)=255,'abc',27,'G'
  103.  
  104.      Any line in the file that begins with a semicolon will be ignored
  105.      (useful for inserting comments).  Lines in the substitution file may
  106.      be no longer than 80 characters.  To continue a line on the next
  107.      line, end the line with a plus sign.  For example:
  108.  
  109.      char('~')='ABCEFGHIJKLMNOP',+
  110.      'QRSTUVWXYZ'
  111.  
  112.      This command would print the entire alphabet everytime the tilde
  113.      ('~') was encountered in a file.
  114.  
  115.      Outline! will look for the file PCOPRN$.CFG in the same directory
  116.      as the configuration file.  If you have not used either the
  117.      l=<filename> command parameter or the SET PCO=<filename> command to
  118.      specify where the configuration file is located, then Outline! will
  119.      just look for PCOPRN$.CFG in the current directory.
  120.  
  121.  
  122. ITEMS ADDED TO Outline! SINCE THE DOCUMENTATION RELEASE.
  123. ----------------------------------------------------------
  124.  
  125. ADDED IN VERSION 1.02:
  126.  
  127. 1)   DE-INSTALL - While using Outline! in memory resident mode, you may
  128.      deinstall it from memory by pressing Control-Backspace three times in
  129.      a row from the main editing mode.  If there were no memory resident
  130.      programs loaded after Outline!, you will recover all the memory
  131.      that Outline! was allocated.  If you load any memory resident
  132.      programs after Outline!, the memory Outline! occupied will be
  133.      freed, but it will not be available for dos to use to run other
  134.      programs in.
  135.  
  136.      Note:     ONLY USE THE DEINSTALL COMMAND AFTER INVOKING Outline!
  137.                FROM THE DOS PROMPT AND ONLY AFTER YOU HAVE SAVED ALL OF
  138.                YOUR OUTLINES.  YOU MUST BE IN THE MAIN EDITING MODE OF
  139.                Outline! FOR THE DEINSTALL TO WORK (not the opening
  140.                menu).
  141.  
  142. ADDED IN VERSION 1.03:
  143.  
  144. 1)   The "Lose Changes" prompt now looks at all open windows.  It used to
  145.      only look at changes in the current window.
  146.  
  147. 2)   With the /K command parameter option you can force Outline! to take
  148.      its keys directly from the keyboard buffer without going through
  149.      BIOS.  This allows you to bypass keyboard enhancers.
  150.  
  151.      MAIN USE:  If you have a whole bunch of keys redefined for your word
  152.      processor and you don't want those key definitions for Outline!,
  153.      you can use the /K option and the keyboard enhancer will be active in
  154.      your main program, but not when you invoke Outline!.  When you
  155.      return back to your word processor, the keyboard enhancer will
  156.      automatically be active again.  It is likely you will only find use
  157.      for this option when using Outline! in its memory resident mode.
  158.  
  159.      For those of you following the progression of versions, all
  160.      non-memory resident versions get their keys through BIOS.  For the
  161.      memory resident version, 1.00 and 1.01 got keys directly from
  162.      keyboard buffer, 1.02 got keys through BIOS and 1.03 gives you the
  163.      choice with /K (default through BIOS).
  164.  
  165. ADDED IN VERSION 1.04:
  166.  
  167. 1)   A few small changes to make 1.03 work how it was supposed to.
  168.  
  169. ADDED IN VERSION 1.05:
  170.  
  171. 1)   DELETE OUTLINE ENTRY PROMPT:  The delete outline entry command now
  172.      contains a prompt that asks you to confirm whether you really want to
  173.      delete the entire outline family.  This was added in response to
  174.      complaints that the ^D command was too dangerous.  You could delete
  175.      your whole outline with a single keystroke.  If you do not want this
  176.      prompt, then you can use the command parameter /P when first loading
  177.      Outline! and the prompt will be skipped.  Note you could also
  178.      define a macro for ^D to be ^DY (^D and then a Y to answer yes to the
  179.      delete prompt).
  180.  
  181. 2)   SNOW ON MONITORS:  The /T command parameter will fix a problem with
  182.      snow on the screen that some monitors may have.  On some IBM color
  183.      graphics adapters, you may see a small amount of snow on the left
  184.      edge of the screen.  Using the /T command parameter should eliminate
  185.      that.  The problem also occurs on some Hercules clone video cards.
  186.      If you have the IBM monochrome adapter, an EGA card, or a COMPAQ
  187.      card, you should not need this option.  Using the /T parameter has a
  188.      slight disadvantage (so you should not use it unless you need it).
  189.      With /T enabled, the on screen time and the CAPS and NUM indicators
  190.      will only be updated whenever you press a key.  Consequently, the
  191.      time and the shift status may not be correct if you have not pressed
  192.      a  key for a while.  Note:  this option is not the same as video
  193.      retrace in the ADVANCED CONFIGURATION menu.  If you see snow on the
  194.      screen, you should first make sure that this option is set to YES.
  195.      Only if that does not fix the problem should you use /T.  You may
  196.      also want to use this option if you have a Hercules clone and you see
  197.      unwanted background snow all the time.
  198.  
  199. 3)   LOW INTENSITY VIDEO:  The /I command parameter will force Outline!
  200.      to use low intensity video instead of high intensity video (in
  201.      response to users with a monochrome display).
  202.  
  203. 4)   SAME KEY INVOKE/DE-INVOKE:  When using Outline! in memory resident
  204.      mode, the same key that you use to invoke Outline! (the default is
  205.      Control-Backslash, but you can change it using KEYSET.COM) will also
  206.      exit Outline! and return you back to your other application.
  207.  
  208. 5)   CORRECT TIME ON COMPATIBLES:  A utility program called GOODCLK.COM is
  209.      now included on the disk that will allow Outline! to correctly
  210.      display the time on some compatibles.  To use it, just run it any
  211.      time before loading Outline! (preferably in your autoexec.bat
  212.      file).  It does not remain memory resident so you lose no memory by
  213.      running it.  All it does is set the BIOS time to be the same as the
  214.      DOS time.  Outline! gets its time from BIOS (because it is so much
  215.      quicker), but some compatibles with clock cards (AT&T, EPSON, ...)
  216.      set the DOS time correctly on boot up, but not the BIOS time.  You
  217.      should not need this if you have an IBM or a COMPAQ.
  218.  
  219. 6)   Pressing the ESC key after hitting the menu key ("/") will now just
  220.      cancel the menu key instead of asking you if you want to quit
  221.      Outline!.
  222.  
  223. ADDED IN VERSION 1.06:
  224.  
  225. 1)   A few small changes to make the memory resident version work with
  226.      more programs.
  227.  
  228. 2)   Bug fixes in the key re-definition part of the program.
  229.  
  230. ADDED IN VERSION 1.07:
  231.  
  232. 1)   Small bug fixes relating to hiding and unhiding text.
  233.  
  234. 2)   New shareware policy (on the opening shareware screen).
  235.  
  236. ADDED IN VERSION 1.08:
  237.  
  238. 1)   You can now set all 8 levels of numbering in the Global
  239.      Outline Style menu.  Also fixed some problems with
  240.      getting the numbering saved correctly to the PCO.CFG
  241.      file.
  242.  
  243. 2)   Fixed bug that occurs only when copying more than 255
  244.      outline elements from one window to another.
  245.  
  246. 3)   Fixed bug that can occur only on an 80286 machine (we
  247.      discovered one of the incompatibilities between the
  248.      8088 and 80286) in the following situations:
  249.  
  250.      a)   Adding text to a lower window number outline with
  251.           more than 64k of outlines above it in higher
  252.           window numbers.
  253.      b)   Copying text or outline elements from a higher
  254.           window # down to a lower window # with more than
  255.           64k of outlines in between.
  256.  
  257. ADDED IN VERSIONS 1.08A AND 1.08B: and ABOVE
  258.  
  259. 1)   Added direct support for Prokey and Superkey so that if you use the
  260.      /K command parameter option, Outline! will detect their presence
  261.      and use their internal functions for putting them to sleep while
  262.      using Outline! instead of going directly to the keyboard buffer to
  263.      try to accomplish the same thing.  This method is considerably more
  264.      reliable and is compatible with the expanded keyboard buffers that
  265.      the above products offer.  If you do not use the /K parameter,
  266.      Outline! behaves exactly as before.
  267. 
  268.